From: Juergen Gross Date: Mon, 28 Aug 2017 07:34:00 +0000 (+0200) Subject: xen/arch/x86/cpu/mcheck/mce.c: remove custom_param() error messages X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~1553 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=7781ff05743276188d8aeff5cc8842c277936213;p=xen.git xen/arch/x86/cpu/mcheck/mce.c: remove custom_param() error messages With _cmdline_parse() now issuing error messages in case of illegal parameters signalled by parsing functions specified in custom_param() the message issued by mce_set_verbosity() can be removed. Signed-off-by: Juergen Gross Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/cpu/mcheck/mce.c b/xen/arch/x86/cpu/mcheck/mce.c index 8015dff8c4..7affe2591e 100644 --- a/xen/arch/x86/cpu/mcheck/mce.c +++ b/xen/arch/x86/cpu/mcheck/mce.c @@ -67,11 +67,7 @@ static int __init mce_set_verbosity(const char *str) if (strcmp("verbose", str) == 0) mce_verbosity = MCE_VERBOSE; else - { - printk(KERN_DEBUG "Machine Check verbosity level %s not recognised" - "use mce_verbosity=verbose", str); return -EINVAL; - } return 0; }